###########################
###     Councillors     ###
###########################
#
# councilor_name_key = {
#	possible = { }								Country scope triggers to evaluate if the council position is allowed. 
#   leader_class = { }							Which leader classes can have this council position. Currently only used for the Recruit new Leader buttons. Default = none.
#   is_leader_possible = { }					Leader scope triggers to evaluate if a leader can be assigned to this position.
#	conditional_tooltip = "LOC_KEY"				Custom tooltip text shown for the requirements of the council position.
#   civic = civic_imperial_cult					Civic that is required for this council position. Also used by UI. Default = none.
#	custom_unlock_title	= "LOC_KEY"				Custom text shown instead of "UNLOCK_COUNCIL_POSITION_TOOLTIP for council positions without a civic"
#   modifier = { }								Country Modifier, that is multiplied by assigned Leader's level.
#	custom_tooltip = "LOC_KEY"					Custom tooltip text shown instead of the auto-generated modifier tooltip text of the council position.
#	custom_tooltip_with_modifiers = "LOC_KEY"	Custom tooltip text shown in addition to the auto-generated modifier tooltip text of the council position.
#	icon = "GFX_icon_name"						Icon used for the council position, if a civic is not specified.
#	required = yes/no							Is this position forced to be on the council. Default = no
# }
#
# councilor_expert_programmer = {
# 	leader_class = { scientist }
# 	possible = {
# 		has_country_flag = expert_programmer
# 	}
# 	is_leader_possible = {
# 		leader_class = scientist
# 	}
# 	modifier = {
# 		planet_researchers_physics_research_produces_add = 1
# 	}
# 	custom_tooltip_with_modifiers = "councilor_expert_programmer_modifiers"
# 	icon = "GFX_icon_councilor_research"
# 	custom_unlock_title = "councilor_expert_programmer_unlock_title"
# 	conditional_tooltip = "councilor_expert_programmer_conditional"
# }
#
###

#################
# Normal Civics #
#################

# Orgasmic Diplomats - Illustrious Seducer
councilor_lv_orgasmic_diplomats = {
	leader_class = { governor admiral general scientist }
	is_leader_possible = {
		OR = {
			leader_class = governor
			leader_class = admiral
			leader_class = general
			leader_class = scientist
		}
	}
	civic = civic_lv_orgasmic_diplomats
	modifier = {
		diplo_weight_mult = 0.025
		envoys_add = 0.50
	}
}

# Open Door Policy - Free Sex Propagandist
councilor_lv_open_door_policy = {
	leader_class = { governor admiral general scientist }
	is_leader_possible = {
		OR = {
			leader_class = governor
			leader_class = admiral
			leader_class = general
			leader_class = scientist
		}
	}
	civic = civic_lv_open_door_policy
	modifier = {
		pop_government_ethic_attraction = 0.05
		country_unity_produces_mult = 0.025
	}
}

###